4865f7daa2024cdc78210e3233112d6a8176303c,ring-android/app/src/main/java/cx/ring/adapters/StarredContactsAdapter.java,StarredContactsAdapter,getView,#number#View#ViewGroup#,74

Before Change


        ImageView photo_view = (ImageView) v.findViewById(R.id.photo);

        if(item.hasPhoto()){
            photo_view.setImageBitmap(item.getPhoto());
        } else {
            infos_fetcher.execute(new ContactDetailsTask(mContext, photo_view, item));
        }

After Change


        ImageView photo_view = (ImageView) v.findViewById(R.id.photo);

        if (item.hasPhoto()) {
            photo_view.setImageBitmap(BitmapUtils.bytesToBitmap(item.getPhoto()));
        } else {
            infos_fetcher.execute(new ContactDetailsTask(mContext, photo_view, item));
        }